c1df51a3b48b8d826a4ddb2976d44ab845bd0847,org.springframework.beans/src/test/java/org/springframework/beans/ExtendedBeanInfoTests.java,ExtendedBeanInfoTests,reproSpr8806,#,709

Before Change



	@Test
	public void reproSpr8806() throws IntrospectionException {
		BeanInfo bi = Introspector.getBeanInfo(LawLibrary.class);
		new ExtendedBeanInfo(bi); // throws
	}

After Change


	@Test
	public void reproSpr8806() throws IntrospectionException {
		// does not throw
		Introspector.getBeanInfo(LawLibrary.class);

		// does not throw after the changes introduced in SPR-8806
		new ExtendedBeanInfo(Introspector.getBeanInfo(LawLibrary.class));